multiple inheritance - определение. Что такое multiple inheritance
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое multiple inheritance - определение

TO HAVE MORE THAN ONE PARENT CLASS
Single inheritance; Diamond problem; Troublesome diamond; Multi-inheritance; Diamond of doom; Diamond of Death; Diamond inheritance; Deadly Diamond of Death; Inheritance diamonds; Inheritance diamond; Diamond dependency
  • A diamond class inheritance diagram.
Найдено результатов: 969
multiple inheritance         
<programming> In object-oriented programming, the possibility that a sub-class may be derived from multiple parent classes which are themselves not derived one from the other. (1997-08-06)
Multiple inheritance         
Multiple inheritance is a feature of some object-oriented computer programming languages in which an object or class can inherit features from more than one parent object or parent class. It is distinct from single inheritance, where an object or class may only inherit from one particular object or class.
single inheritance         
The property of an object-oriented language which restricts a sub-class to be derived from only one parent. Opposite of multiple inheritance.
Extranuclear inheritance         
  • DNA]]. They are passed on by mothers to their children via the cytoplasm of the egg.
TRANSMISSION OF GENES OCCURRING OUTSIDE THE NUCLEUS
Cytoplasmic inheritance; Extranuclear Inheritance; Cytoplasmic trait; Cytoplasmic (uniparental) inheritance; Cytoplasmic genetics; Cytoplasmically inherited
Extranuclear inheritance or cytoplasmic inheritance is the transmission of genes that occur outside the nucleus. It is found in most eukaryotes and is commonly known to occur in cytoplasmic organelles such as mitochondria and chloroplasts or from cellular parasites like viruses or bacteria.
Multiple abnormalities         
CONGENITAL ABNORMALITIES THAT AFFECT MORE THAN ONE ORGAN OR BODY STRUCTURE
Multiple congenital malformations; Multiple congenital anomalies
When a patient has multiple abnormalities (multiple anomaly, multiple deformity), they have a congenital abnormality that can not be primarily identified with a single system of the body or single disease process. Most medical conditions can have systemic sequelae, but multiple abnormalities occur when the effects on multiple systems is immediately obvious.
multiple unit         
  • A double decker [[Sydney Trains B set]]
  • River Line]]
  • Perth]] and the mining town of [[Kalgoorlie]] in [[Australia]].
  • Elektrichka on [[Yaroslavskiy Rail Terminal]], Moscow
  • RABe 523]] is the most common multiple units on Switzerland, used by almost every S-Bahn.
  • A [[N700 Series Shinkansen]] set in June 2008
  • South Side Elevated Railroad car #1—one of the cars that Frank Sprague converted to MU operation in Chicago
  • East Croydon}}
  • Simon's Town station]], [[Cape Town]]
TYPE OF TRAIN CONSISTING OF SELF-PROPELLED CARRIAGES CAPABLE OF COUPLING WITH OTHERS OF THE SAME OR SIMILAR TYPE
Multiple units; Multiple-unit; Self-powered; Motorized unit; Self-powered car; Multi-unit; Electric mutliple unit; Multiple Units; Multiple-unit car; Multiple Unit; Freight multiple unit; Multiple-unit operation; Multiple unit train; Multiple-Unit
¦ noun a passenger train of two or more carriages powered by integral motors which drive a number of axles.
Multiple unit         
  • A double decker [[Sydney Trains B set]]
  • River Line]]
  • Perth]] and the mining town of [[Kalgoorlie]] in [[Australia]].
  • Elektrichka on [[Yaroslavskiy Rail Terminal]], Moscow
  • RABe 523]] is the most common multiple units on Switzerland, used by almost every S-Bahn.
  • A [[N700 Series Shinkansen]] set in June 2008
  • South Side Elevated Railroad car #1—one of the cars that Frank Sprague converted to MU operation in Chicago
  • East Croydon}}
  • Simon's Town station]], [[Cape Town]]
TYPE OF TRAIN CONSISTING OF SELF-PROPELLED CARRIAGES CAPABLE OF COUPLING WITH OTHERS OF THE SAME OR SIMILAR TYPE
Multiple units; Multiple-unit; Self-powered; Motorized unit; Self-powered car; Multi-unit; Electric mutliple unit; Multiple Units; Multiple-unit car; Multiple Unit; Freight multiple unit; Multiple-unit operation; Multiple unit train; Multiple-Unit
A multiple-unit train or simply multiple unit (MU) is a self-propelled train composed of one or more carriages joined together, which when coupled to another multiple unit can be controlled by a single driver, with multiple-unit train control.
Hereditary multiple exostoses         
EXOSTOSIS THAT HAS MATERIAL BASIS IN A MUTATION ON THE GENES EXT1, EXT2 AND EXT3 WHICH RESULTS IN MULTIPLE BONY SPURS THROUGHOUT A CHILD'S GROWTH
Multiple hereditary exostoses; Hereditary Multiple Exostoses; Exostoses, multiple hereditary; Multiple Hereditary Exostoses; Osteocartilaginous exostosis; Exostoses, Multiple Cartilaginous; Multiple osteochondromatosis; OSTEOCHONDROMATOSIS, MULTIPLE; Osteochondromatosis, Multiple; Multiple Osteochondroma; Diaphyseal aclasis; Multiple congenital exostoses; Exostoses, multiple; Metaphyseal aclasis; Diaphyseal aclasia
Hereditary multiple osteochondromas (HMO), also known as hereditary multiple exostoses, is a disorder characterized by the development of multiple benign osteocartilaginous masses (exostoses) in relation to the ends of long bones of the lower limbs such as the femurs and tibias and of the upper limbs such as the humeri and forearm bones. They are also known as osteochondromas.
Multiple comparisons problem         
PROBLEM WHERE ONE CONSIDERS A SET OF INFERENCES SIMULTANEOUSLY BASED ON THE OBSERVED VALUES
Multiple comparison; Multiple testing; Multiple testing correction; Multiple Testing Correction; Critical difference; Multiple correction; Problem of multiple comparisons; Multiple comparisons; Multiple testing problem; Classification of multiple hypothesis tests; Simultaneous inference
In statistics, the multiple comparisons, multiplicity or multiple testing problem occurs when one considers a set of statistical inferences simultaneously or infers a subset of parameters selected based on the observed values.
Theory of multiple intelligences         
  • American baseball player Babe Ruth
THEORY OF INTELLIGENCE
Multiple intelligence; Multiple Intelligence; Multiple Intelligences; Multiple intelligences; Naturalist Intelligence; Gardner's Multiple Intelligences; Howard gardner's multiple intelligences theoriy; Howard gardner's theory of multiple intelligences; Gardner's Theory of Multiple Intelligence; Multiple intelligence theory; Seven intelligences; Frames Of Mind: The Theory of Multiple Intelligences; Frames of Mind; Interpersonal intelligence; Intrapersonal intelligence; Theory of Multiple intelligences; Eight Aptitudes; Intelligence modalities; Physical intelligence; Physical Intelligence; Modalities of intelligence; Multiple Intelligences Theory
The theory of multiple intelligences proposes the differentiation of human intelligence into specific modalities of intelligence, rather than defining intelligence as a single, general ability.Gardner, Howard.

Википедия

Multiple inheritance

Multiple inheritance is a feature of some object-oriented computer programming languages in which an object or class can inherit features from more than one parent object or parent class. It is distinct from single inheritance, where an object or class may only inherit from one particular object or class.

Multiple inheritance has been a controversial issue for many years, with opponents pointing to its increased complexity and ambiguity in situations such as the "diamond problem", where it may be ambiguous as to which parent class a particular feature is inherited from if more than one parent class implements said feature. This can be addressed in various ways, including using virtual inheritance. Alternate methods of object composition not based on inheritance such as mixins and traits have also been proposed to address the ambiguity.